(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <math.h>
double pow()
SYNOPSIS
double base
double exp

FUNCTION
Compute the p'th power of b.

INPUTS
base
The base
exp
The exponent
RESULT
The p'th power of b.

NOTES
EXAMPLE
// returns 8
pow (2,3);

BUGS
SEE ALSO
sqrt()
INTERNALS
HISTORY
20.05.1997 aros
Added a couple of floating point math functions from fdlibm by Sun.